home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 1999 November / SGI IRIX 6.5 Applications 1999 November.iso / dev / java_dev.idb / usr / java / bin32 / sgi / green_threads / rmic.z / rmic
Encoding:
Text File  |  1998-07-14  |  373 b   |  20 lines

  1. #!/bin/sh -p
  2.  
  3. #
  4. # Check for properties file
  5. #
  6. if [ ! -r "$JAVA_HOME/lib/rmic.properties" ] ; then
  7.     echo "Could not read properties file: $JAVA_HOME/lib/rmic.properties" 1>&2 
  8.     exit 1
  9. fi
  10.  
  11. #
  12. # source a script that extracts RUNTIME_ARGS and APP_ARGS
  13. #
  14. . `dirname $0`/.extract_args
  15.  
  16. #
  17. # Run the stub compiler
  18. #
  19. `dirname $0`/java $RUNTIME_ARGS sun.rmi.rmic.Main $APP_ARGS
  20.